curl --request PUT \
--url http:///%7B{baseurl}%7D/api/v1/client/responses/{responseId} \
--header 'Content-Type: application/json' \
--data '{
"data": {
"hs8yd14l9h8u353tjmv6rzawqqq": "clicked",
"tcgls0063n8ri7dtrbnepcmz": "Who? Who? Who?"
},
"finished": true
}'
{
"data": {}
}
Update an existing response for example when you want to mark a response as finished or you want to change an existing response’s value.
curl --request PUT \
--url http:///%7B{baseurl}%7D/api/v1/client/responses/{responseId} \
--header 'Content-Type: application/json' \
--data '{
"data": {
"hs8yd14l9h8u353tjmv6rzawqqq": "clicked",
"tcgls0063n8ri7dtrbnepcmz": "Who? Who? Who?"
},
"finished": true
}'
{
"data": {}
}
OK
The response is of type object
.
Was this page helpful?